home *** CD-ROM | disk | FTP | other *** search
- package symantec.itools.db.awt;
-
- public class RowState {
- int state;
- public static final int CLEAN = 0;
- public static final int NEW = 1;
- public static final int MODIFIED = 2;
- public static final int DELETED = 3;
-
- public int getState() {
- return this.state;
- }
-
- public void markClean() {
- this.state = 0;
- }
-
- public void markNew() {
- this.state = 1;
- }
-
- public void markModified() {
- if (this.state != 1 || this.state != 3) {
- this.state = 2;
- }
-
- }
-
- public void markDeleted() {
- this.state = 3;
- }
- }
-